Produce a recursive method for creating substrings of length 1 or 2.

i am having an error that i can't solve within this code
No description
No description
No description
29 Replies
JavaBot
JavaBotβ€’12mo ago
βŒ› This post has been reserved for your question.
Hey @πŸŒ— キラー πŸŒ• パパ πŸŒ“! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
Unknown User
Unknown Userβ€’12mo ago
Message Not Public
Sign In & Join Server To View
JavaBot
JavaBotβ€’12mo ago
πŸ’€ Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
πŸŒ— キラー πŸŒ• パパ πŸŒ“
oh i know i have to drag the word bank code to my base code and i thought the code works but it showed me the error for the else and when i tried to move it it gave me the } <---- error
Unknown User
Unknown Userβ€’12mo ago
Message Not Public
Sign In & Join Server To View
JavaBot
JavaBotβ€’12mo ago
Please format your code & make it more readable. For the java programming language, it should look like this:
```java public class Main { public static void main(String[] args){ System.out.println("Hello World!"); } ```
β€’ These are backticks, not quotes.
JavaBot
JavaBotβ€’12mo ago
πŸ’€ Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
πŸŒ— キラー πŸŒ• パパ πŸŒ“
import java.util.ArrayList; public class Amber { public static ArrayList<String> breakups(String str) { ArrayList<String> result = new ArrayList<>(); if (str.length() <= 1) { result.add(str); } else if (str.length() == 2) { result.add(str); String first1 = str.substring(0, 1); String rest1 = str.substring(1); result.add(first1 + " " + rest1); } else { String first1 = str.substring(0, 1); String rest1 = str.substring(1); ArrayList<String> shorter1 = breakups(rest1); for (String s : shorter1) { result.add(first1 + " " + s); } String first2 = str.substring(0, 2); String rest2 = str.substring(2); ArrayList<String> shorter2 = breakups(rest2); for (String s : shorter2) { result.add(first2 + " " + s); } } return result; } public static void main(String[] args) { ArrayList<String> result = breakups("amber"); for (String element : result) { System.out.println(element); } } }
JavaBot
JavaBotβ€’12mo ago
Please format your code to make it more readable. For java, it should look like this:
​`​`​`​java
public void foo() {

}
​`​`​`​
​`​`​`​java
public void foo() {

}
​`​`​`​
πŸŒ— キラー πŸŒ• パパ πŸŒ“
​​​​java public void foo() { } ​​​​
Unknown User
Unknown Userβ€’12mo ago
Message Not Public
Sign In & Join Server To View
πŸŒ— キラー πŸŒ• パパ πŸŒ“
it won't break the code tho
JavaBot
JavaBotβ€’12mo ago
πŸ’€ Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
πŸŒ— キラー πŸŒ• パパ πŸŒ“
i will try this if this dose not work then idk
Shruti
Shrutiβ€’12mo ago
result.add(str); String first1 = str.substring(0, 1); String rest1 = str.substring(1); result.add(first1 + " " + rest1);
} else {
String first1 = str.substring(0, 1);
String rest1 = str.substring(1);
ArrayList<String> shorter1 = breakups(rest1);
for (String s : shorter1) {
result.add(first1 + " " + s);
}
} else {
String first1 = str.substring(0, 1);
String rest1 = str.substring(1);
ArrayList<String> shorter1 = breakups(rest1);
for (String s : shorter1) {
result.add(first1 + " " + s);
}
String first2 = str.substring(0, 2); String rest2 = str.substring(2); ArrayList<String> shorter2 = breakups(rest2); for (String s : shorter2) { result.add(first2 + " " + s); this part is not in the word bank code
This message has been formatted automatically. You can disable this using /preferences.
tjoener
tjoenerβ€’12mo ago
JetBrains Marketplace
Rainbow Brackets - IntelliJ IDEs Plugin | Marketplace
🌈Rainbow Brackets for IntelliJ based IDEs/Android Studio/HUAWEI DevEco Studio Core Features Rainbowify various types brackets(Round,Squiggly,Square,Angle) Rainbowify...
tjoener
tjoenerβ€’12mo ago
Gives them all matching colors, so you can see your mistake more clearly
JavaBot
JavaBotβ€’12mo ago
πŸ’€ Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
πŸŒ— キラー πŸŒ• パパ πŸŒ“
mm Failed to compile Amber.java:14: error: cannot find symbol result.add(first1 + " " + rest1); ^ symbol: variable first1 location: class Amber Amber.java:14: error: cannot find symbol result.add(first1 + " " + rest1); ^ symbol: variable rest1 location: class Amber Amber.java:18: error: cannot find symbol ArrayList<String> shorter1 = breakups(rest1); ^ symbol: variable rest1 location: class Amber Amber.java:21: error: cannot find symbol result.add(first1 + " " + s); ^ symbol: variable first1 location: class Amber Amber.java:23: error: cannot find symbol ArrayList<String> shorter2 = breakups(rest2); ^ symbol: variable rest2 location: class Amber Amber.java:26: error: cannot find symbol result.add(first2 + " " + s); ^ symbol: variable first2 location: class Amber 6 errors
Failed to compile
Amber.java:14: error: cannot find symbol
result.add(first1 + " " + rest1);
^
symbol: variable first1
location: class Amber
Amber.java:14: error: cannot find symbol
result.add(first1 + " " + rest1);
^
symbol: variable rest1
location: class Amber
Amber.java:18: error: cannot find symbol
ArrayList<String> shorter1 = breakups(rest1);
^
symbol: variable rest1
location: class Amber
Amber.java:21: error: cannot find symbol
result.add(first1 + " " + s);
^
symbol: variable first1
location: class Amber
Amber.java:23: error: cannot find symbol
ArrayList<String> shorter2 = breakups(rest2);
^
symbol: variable rest2
location: class Amber
Amber.java:26: error: cannot find symbol
result.add(first2 + " " + s);
^
symbol: variable first2
location: class Amber
6 errors
Failed to compile
Amber.java:14: error: cannot find symbol
result.add(first1 + " " + rest1);
^
symbol: variable first1
location: class Amber
Amber.java:14: error: cannot find symbol
result.add(first1 + " " + rest1);
^
symbol: variable rest1
location: class Amber
Amber.java:18: error: cannot find symbol
ArrayList<String> shorter1 = breakups(rest1);
^
symbol: variable rest1
location: class Amber
Amber.java:21: error: cannot find symbol
result.add(first1 + " " + s);
^
symbol: variable first1
location: class Amber
Amber.java:23: error: cannot find symbol
ArrayList<String> shorter2 = breakups(rest2);
^
symbol: variable rest2
location: class Amber
Amber.java:26: error: cannot find symbol
result.add(first2 + " " + s);
^
symbol: variable first2
location: class Amber
6 errors
thats the error i am getting @borgrel
Unknown User
Unknown Userβ€’12mo ago
Message Not Public
Sign In & Join Server To View
πŸŒ— キラー πŸŒ• パパ πŸŒ“
"scope" refers to the context in which variables, functions, and other identifiers are defined and can be accessed.
Unknown User
Unknown Userβ€’12mo ago
Message Not Public
Sign In & Join Server To View
πŸŒ— キラー πŸŒ• パパ πŸŒ“
yeah so i am looking for break downs for 1 and 2 for amber and the code you gave me for the middle dose not work when i did the draged it from the left to the right code where i need and i pretty much it gave me a error
Unknown User
Unknown Userβ€’12mo ago
Message Not Public
Sign In & Join Server To View
πŸŒ— キラー πŸŒ• パパ πŸŒ“
oh ok my bad but i do not know what i need to do tho i am not getting anything from this code i did XD
Unknown User
Unknown Userβ€’12mo ago
Message Not Public
Sign In & Join Server To View
JavaBot
JavaBotβ€’12mo ago
πŸ’€ Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.

Did you find this page helpful?