30-seconds-of-swift-code icon indicating copy to clipboard operation
30-seconds-of-swift-code copied to clipboard

A Swift implementation of 30-seconds-of-code: A curated collection of useful Swift 4 snippets that you can understand in 30 seconds or less.

Results 3 30-seconds-of-swift-code issues
Sort by recently updated
recently updated
newest added

Make a function that checks if two strings are anagrams ex: anagram("abcd3", "3acdb") //false anagram("123", "456") //false

good first issue
hacktoberfest

Make a function that removes elements from the end of an array until the passed function returns true and returns the remaining elements in the array.

hacktoberfest