Hello I need to create a function that consumes a list that sums up only numbers within the list and ignores any other type of data (strings etc)
Example (adding-only-numbers (cons 5 (cons "b" ( cons 2 (cons "whatsup" empty))))) should come out to (cons 7 (cons "b" (cons "whatsup" empty)))
Keeping all the strings or other data types in order while collecting the numbers and adding them all up.
If there are no numbers, and only strings then it should be 0 at the front
Example (adding-only-numbers (cons "eb" (cons "b" ( cons (make posn 5 0) (cons "whatsup" empty))))) should come out to (cons 0 (cons "eb" (cons "b" ( cons (make posn 5 0) (cons "whatsup" empty)))))
your help is much appreciated!