Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8770197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:30:58+00:00 2026-06-13T17:30:58+00:00

I am trying to implement a method recursively but I am confused because at

  • 0

I am trying to implement a method recursively but I am confused because at some point the compiler think it returns List[List[Any]] instead of List[List[Char]]. This is my function:

def anag(wrd: List[Char]): List[List[Char]] = if(wrd.isEmpty) List(wrd)
    else wrd.map(l => l :: anag(wrd.tail)) //found: List[List[Any]]

def anag(wrd: List[Char]): List[List[Char]] = if(wrd.isEmpty) List(wrd)
    else wrd.map(l => l :: wrd.tail) //OK  

What am I missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T17:30:59+00:00Added an answer on June 13, 2026 at 5:30 pm

    function anag returns List[List[Char]] you are combining it with a char:

    l :: anag(wrd.tail) //prepending a char to a list of List[Char]
    

    The second example is ok since wrd.tail is of type List[Char]

    edit:
    how to solve that? since this is probably for an assignment on coursera i will leave that to you. You just have to iterate over the whole word AND over all the partial solutions returned by recursive call to anag (look at for comprehensions)

    you can also find all permutations of a list with a method permutations from scala library:

    wrd.permutations.toList
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement a search method, which returns a index of a object
I'm trying to implement a method which returns a boost::filter_iterator pair (begin, end). I
I'm trying to implement a method for a binary tree which returns a stream.
I'm currently trying to implement a destroy/remove method for views but I can't get
I am trying to implement method described here , but can't make it work.
I'm trying to implement a method that returns an error whenever a certain directory
im trying to implement a getBounds() method, but i cant get union to work;
I'm trying to implement method Find that searches the database. I forgot to mention
So I'm trying to implement the alterTime method from the EaseActionsTest example from the
Trying to implement LoaderManager + CursorLoader. In onFinish method adapter should swap its cursor

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.