Python Forum
comparing strings (or sequences)
Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
comparing strings (or sequences)
#3
count_of_equal_items('skaperen','skapare') -> 4
count_of_equal_items('war','raw') -> 0
count_of_equal_items('a','a') -> 1
count_of_equal_items([0,1,2,3,4,5,6],[0,1]*9) -> 2
count_of_equal_items('a','b') -> 0
count_of_equal_items('','hello')-> 0
count_of_equal_items('heavy','hello') -> 2

what i am wondering is whether i should implement count_of_equal_items() or not, and if so, is there a way to do it, short of brute force python, that i overlooked in the docs.
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Messages In This Thread
comparing strings (or sequences) - by Skaperen - Jan-25-2017, 08:35 AM
RE: comparing strings (or sequences) - by buran - Jan-25-2017, 08:45 AM
RE: comparing strings (or sequences) - by Skaperen - Jan-25-2017, 09:32 AM
RE: comparing strings (or sequences) - by wavic - Jan-25-2017, 09:32 AM
RE: comparing strings (or sequences) - by buran - Jan-25-2017, 09:40 AM
RE: comparing strings (or sequences) - by Skaperen - Jan-25-2017, 10:30 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Trying to understand strings and lists of strings Konstantin23 2 821 Aug-06-2023, 11:42 AM
Last Post: deanhystad
  detect equal sequences in list flash77 17 2,972 Oct-28-2022, 06:38 AM
Last Post: flash77
  Splitting strings in list of strings jesse68 3 1,823 Mar-02-2022, 05:15 PM
Last Post: DeaD_EyE
  needleman wunsch algorithm for two sequences of different length johnny_sav1992 0 1,724 Jul-27-2020, 05:45 PM
Last Post: johnny_sav1992
  Comparing Values/QC Within Two Strings uttadms31 2 1,933 Jul-07-2020, 03:49 PM
Last Post: uttadms31
  help for escape sequences NewPi 1 2,070 Dec-11-2019, 11:22 PM
Last Post: ichabod801
  copying parts of mutable sequences Skaperen 1 2,266 Dec-02-2019, 10:34 AM
Last Post: Gribouillis
  Convert weekly sequences to date and time. SinPy 0 1,478 Nov-23-2019, 05:20 PM
Last Post: SinPy
  Escape sequences display in python Uchikago 1 2,465 Jun-27-2019, 03:25 PM
Last Post: Gribouillis
  Finding multiple strings between the two same strings Slither 1 2,555 Jun-05-2019, 09:02 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020