Skip to main content
added 71 characters in body
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26
input: "Simple" "-impl +nip -e +er" output: "Sniper" input: "Function" "-F +Conj" output: "Conjunction" input: "Goal" "+Code -al +lf" output: "CodeGolf" input: "Chocolate" "Chocolate" output: "Chocolate" //Nothing happens... input: "Hello" "-lo+p +Please" //Spaces are irrelevant output: "PleaseHelp" input: "Mississippi" "-s-s-i-ppi+ng" //Operations can be in any order output: "Missing" input: "abcb" "-c -b +d" output: "abd"   input: "1+1=2" "-1+22-=2+=23" outut: "22+1=23" 
input: "Simple" "-impl +nip -e +er" output: "Sniper" input: "Function" "-F +Conj" output: "Conjunction" input: "Goal" "+Code -al +lf" output: "CodeGolf" input: "Chocolate" "Chocolate" output: "Chocolate" //Nothing happens... input: "Hello" "-lo+p +Please" //Spaces are irrelevant output: "PleaseHelp" input: "Mississippi" "-s-s-i-ppi+ng" //Operations can be in any order output: "Missing" input: "abcb" "-c -b +d" output: "abd" 
input: "Simple" "-impl +nip -e +er" output: "Sniper" input: "Function" "-F +Conj" output: "Conjunction" input: "Goal" "+Code -al +lf" output: "CodeGolf" input: "Chocolate" "Chocolate" output: "Chocolate" //Nothing happens... input: "Hello" "-lo+p +Please" //Spaces are irrelevant output: "PleaseHelp" input: "Mississippi" "-s-s-i-ppi+ng" //Operations can be in any order output: "Missing" input: "abcb" "-c -b +d" output: "abd"   input: "1+1=2" "-1+22-=2+=23" outut: "22+1=23" 
added 63 characters in body
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26
input: "Simple" "-impl +nip -e +er" output: "Sniper" input: "Function" "-F +Conj" output: "Conjunction" input: "Goal" "+Code -al +lf" output: "CodeGolf" input: "Chocolate" "Chocolate" output: "Chocolate" //Nothing happens... input: "Hello" "-lo+p +Please" //Spaces are irrelevant output: "PleaseHelp" input: "Mississippi" "-s-s-i-ppi+ng" //Operations can be in any order output: "Missing"   input: "abcb" "-c -b +d" output: "abd" 
input: "Simple" "-impl +nip -e +er" output: "Sniper" input: "Function" "-F +Conj" output: "Conjunction" input: "Goal" "+Code -al +lf" output: "CodeGolf" input: "Chocolate" "Chocolate" output: "Chocolate" //Nothing happens... input: "Hello" "-lo+p +Please" //Spaces are irrelevant output: "PleaseHelp" input: "Mississippi" "-s-s-i-ppi+ng" //Operations can be in any order output: "Missing" 
input: "Simple" "-impl +nip -e +er" output: "Sniper" input: "Function" "-F +Conj" output: "Conjunction" input: "Goal" "+Code -al +lf" output: "CodeGolf" input: "Chocolate" "Chocolate" output: "Chocolate" //Nothing happens... input: "Hello" "-lo+p +Please" //Spaces are irrelevant output: "PleaseHelp" input: "Mississippi" "-s-s-i-ppi+ng" //Operations can be in any order output: "Missing"   input: "abcb" "-c -b +d" output: "abd" 
deleted 191 characters in body
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26

- Will increment the pointer through the String until it finds the suffix. The suffix will be removed from the String and the pointer will be left on the left side of the removed text. If no suffix is found the pointer will simply progress to the end of the String and be left there.

Each operation should be applied to the input String and the result should be returned.

- Will moveincrement the pointer over tothrough the rightString until it finds the suffix and. The suffix will remove that part ofbe removed from the String. Leaving and the pointer will be left on the left hand side of the text that was just removed text. If no suffix is found the pointer will simply progress to the end of the String and be left there.

- Will increment the pointer through the String until it finds the suffix. The suffix will be removed from the String and the pointer will be left on the left side of the removed text. If no suffix is found the pointer will simply progress to the end of the String and be left there.

Each operation should be applied to the input String and the result should be returned.

- Will move the pointer over to the right until it finds the suffix and will remove that part of the String. Leaving the pointer on the left hand side of the text that was just removed.

Each operation should be applied to the input String and the result should be returned.

- Will increment the pointer through the String until it finds the suffix. The suffix will be removed from the String and the pointer will be left on the left side of the removed text. If no suffix is found the pointer will simply progress to the end of the String and be left there.

added 18 characters in body
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26
Loading
added 18 characters in body
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26
Loading
added 179 characters in body
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26
Loading
added 36 characters in body
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26
Loading
Source Link
Shaun Wild
  • 2.6k
  • 19
  • 26
Loading