Last active
March 3, 2021 13:37
-
-
Save nattybear/7a761d915d253546ee053c6b7e6899d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
char = input() | |
languages = ["c", "c++", "java", "python", "c#", "javascript"] | |
xs = filter(lambda x: char in x, languages) | |
for x in xs: print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment