lysdexic@programming.dev to Programming@programming.dev • 1 year agoIntroducing Wikifunctions: first Wikimedia project to launch in a decade creates new forms of knowledge – Wikimedia Foundationexternal-linkmessage-square3 fedilinkarrow-up185
arrow-up185external-linkIntroducing Wikifunctions: first Wikimedia project to launch in a decade creates new forms of knowledge – Wikimedia Foundationlysdexic@programming.dev to Programming@programming.dev • 1 year agomessage-square3 Commentsfedilink
minus-squareWetBeardHairs@lemmy.mlhexbear16·1 year agoNeat. I don't like that the implementations have to name the function by some cryptic identifier, though. Real words matter in source code. Who can tell me what this function is? def Z10096(Z10096K1): return Z10096K1 == Z10096K1[::-1] How about this? def isPalimdrone(myString): return myString == myString[::-1] linkfedilink
Neat. I don't like that the implementations have to name the function by some cryptic identifier, though. Real words matter in source code.
Who can tell me what this function is?
How about this?