all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* count char in string [The Emacs Challenge Competition - round 2, with fallout]
@ 2020-10-28  0:42 Emanuel Berg via Users list for the GNU Emacs text editor
  2020-10-28  8:04 ` Corwin Brust
                   ` (3 more replies)
  0 siblings, 4 replies; 16+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-10-28  0:42 UTC (permalink / raw)
  To: help-gnu-emacs

round 1:

  https://lists.gnu.org/archive/html/help-gnu-emacs/2020-10/msg00524.html

fallout:
  1. Daniel Martín (1 point)
  2. Emanuel Berg  (-2)

Yes, your read it right, incorrect answers are "awarded" -2 points.
This is like the Russian or Cuban Olympic/Amateur boxing program -
only gold counts!

But: doesn't that mean that people will be afraid to post? Again, in
the Russian and Cuban Olympic/Amateur boxing programs, we are not
concerned with people who are afraid...

round 2:

Very simple: we are looking for a function that returns the number of
occurrences of a char in a string.

Emanuel Berg's solution:

(require 'cl-lib)
(defun count-char-in-string (the-char str)
  (let ((c  (if (characterp the-char) the-char (string-to-char the-char)))
        (cs (string-to-list str)) )
    (cl-count c cs) ))
;; (count-char-in-string ?a "Emacs skills kills") ; 1

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-11-29  3:44 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-28  0:42 count char in string [The Emacs Challenge Competition - round 2, with fallout] Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-28  8:04 ` Corwin Brust
2020-10-28 17:19   ` Noam Postavsky
2020-10-29  1:15     ` Corwin Brust
2020-11-29  3:44       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-28  1:26   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-28 17:40     ` Benjamín Buccianti
2020-10-29  1:46 ` Benjamín Buccianti
2020-10-29 10:38 ` Stephen Berman
2020-10-29 16:13   ` Drew Adams
2020-10-29 13:53 ` Patrick McAllister
2020-10-29 17:52   ` Leo Butler
2020-10-29 22:44     ` Jean Louis
2020-10-30 11:09       ` Leo Butler
2020-10-30 11:36         ` Joost Kremers
2020-10-30 11:53         ` Jean Louis

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.