Day 5
Day 5
Valid Anagram
1 | class Solution { |
1 | func isAnagram(s string, t string) bool { |
Intersection of Two Arrays
1 | class Solution { |
1 | func intersection(nums1 []int, nums2 []int) []int { |
Happy Number
1 | class Solution { |
1 | func isHappy(n int) bool { |
Two Sum
1 | class Solution { |
1 | func twoSum(nums []int, target int) []int { |