Activity for Shaggy
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #279723 | Initial revision | — | almost 4 years ago |
Answer | — |
A: Longest Increasing Subsequence Japt `-h`, 12 bytes à kÈäÎdÄÃmÊñ Try it à kÈäÎdÄÃmÊñ :Implicit input of array à :Combinations k :Remove elements that return true È :When passed through the following function ä : Consecutive pairs ... (more) |
— | almost 4 years ago |
Comment | Post #279450 |
`Õc` with the `-P` flag would work, taking the strings as character arrays. (more) |
— | almost 4 years ago |
Comment | Post #279434 |
Can we take the strings as an array of characters? (more) |
— | almost 4 years ago |
Comment | Post #279287 |
Sometimes it's a hangover from a previous attempt at a solution, @Quintec, other times it's me trying to keep various tricks fresh in my mind and, occasionally, it's just to show off! (more) |
— | about 4 years ago |
Edit | Post #279289 |
Post edited: |
— | about 4 years ago |
Edit | Post #279324 |
Post edited: |
— | about 4 years ago |
Edit | Post #279324 | Initial revision | — | about 4 years ago |
Answer | — |
A: Tile pyramids on top of each other! Japt `-R`, 12 bytes õÈ"/\\"mpXÃû Try it õÈ"/\\"mpXÃû :Implicit input of integer õ :Range [1,input] È :Map each X "/\\" : Literal string m : Map pX : Repeat X times à :... (more) |
— | about 4 years ago |
Comment | Post #279203 |
@Corsaka, In Japt you can palindromise with or, by default, without repeating the middle character/element. (more) |
— | about 4 years ago |
Edit | Post #279284 |
Post edited: |
— | about 4 years ago |
Edit | Post #279284 |
Post edited: |
— | about 4 years ago |
Comment | Post #279203 |
[22 bytes](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&flags=LVI&code=MjfyyG4yOCDHbVgyNy1YLVrDuMPU%2bw) but I'm sure it can be improved further. I wonder would just building the left-hand side and then palindromising work out shorter? (more) |
— | about 4 years ago |
Edit | Post #279289 | Initial revision | — | about 4 years ago |
Answer | — |
A: Length of a Sumac Sequence Japt `-N`, 9 bytes ¨T©ÒßVVnU Try it ¨T©ÒßVVnU :Implicit input of integers U & V ¨ :U is >= T : 0 © :Logical AND with Ò :Negate the bitwise NOT of ß :Recursive call with arguments V ... (more) |
— | about 4 years ago |
Comment | Post #279284 |
Turns out I was slightly overthinking it, @Quintec; a simple map does the trick. (more) |
— | about 4 years ago |
Edit | Post #279284 |
Post edited: |
— | about 4 years ago |
Edit | Post #279287 | Initial revision | — | about 4 years ago |
Answer | — |
A: Partial Sums of Harmonic Series Japt, 11 10 bytes >0©ÒßUÉ/°T Try it >0©ÒßUÉ/°T :Implicit input of integer U >0 :Greater than 0? © :Logical AND with Ò :Negate the bitwise NOT of (i.e., increment) ß :Recursive call with argument UÉ/ ... (more) |
— | about 4 years ago |
Edit | Post #279284 | Initial revision | — | about 4 years ago |
Answer | — |
A: Evaluate a single variable polynomial equation Japt `-x`, 6 5 bytes ËVpE Try it ËVpE :Implicit input of array U and float V Ë :Map each element D at 0-based index E : Multiply D by VpE : V raised to the power of E :Implicit output of sum of resulting array (more) |
— | about 4 years ago |